Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

633432 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/204 - Password Strength Checker

app.js cody/swapnilsparsh/30DaysOfJavaScript/204 - Password Strength Checker/app.js
169 Views
0 Comments
let input = document.getElementById('password')
let indicator = document.querySelector('.indication')
let weak = document.querySelector('.weak')
let medium = document.querySelector('.medium')
let strong = document.querySelector('.strong')
let indicationText = document.querySelector('.indicationText')
let showBtn = document.querySelector('.password-show-btn')
let hideBtn = document.querySelector('.password-hide-btn')
style.css cody/swapnilsparsh/30DaysOfJavaScript/204 - Password Strength Checker/style.css
110 Views
0 Comments
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

html, body {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
index.html cody/swapnilsparsh/30DaysOfJavaScript/204 - Password Strength Checker/index.html
309 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://unpkg.com/boxicons@2.1.4/dist/boxicons.js"></script>